home *** CD-ROM | disk | FTP | other *** search
/ The Hacker Chronicles - A…the Computer Underground / The Hacker Chronicles - A Tour of the Computer Underground (P-80 Systems).iso / cud1 / cud106e.txt < prev    next >
Text File  |  1992-09-26  |  4KB  |  84 lines

  1.  
  2.  
  3.   ****************************************************************************
  4.                   >C O M P U T E R   U N D E R G R O U N D<
  5.                                 >D I G E S T<
  6.                ***  Volume 1, Issue #1.06 (April 27, 1990)   **
  7.   ****************************************************************************
  8.  
  9. MODERATORS:   Jim Thomas / Gordon Meyer
  10. REPLY TO:     TK0JUT2@NIU.bitnet
  11.  
  12. COMPUTER UNDERGROUND DIGEST is an open forum dedicated to sharing
  13. information among computerists and to the presentation and debate of
  14. diverse views.
  15. --------------------------------------------------------------------
  16. DISCLAIMER: The views represented herein do not necessarily represent the
  17.             views of the moderators. Contributors assume all responsibility
  18.             for assuring that articles submitted do not violate copyright
  19.             protections.
  20. --------------------------------------------------------------------
  21.  
  22.  
  23. ***************************************************************
  24. ***  Computer Underground Digest Issue #1.06 / File 5 of 5  ***
  25. ***************************************************************
  26.  
  27. Computer and system literacy improves our ability to send and receive
  28. information across systems and to identity and resolve problems on our own
  29. systems when they occur. We encourage people to submit "tricks and traps"
  30. that others might find useful in their jobs or in simply becoming more
  31. functionally adept on their system.
  32.  
  33. The following description of SMTP was submitted by The Parrot.
  34.  
  35. --------------------------------------------------------------------
  36. Date: Thu, 26 Apr 90 00:43:25 -0400
  37. From: (anonymity requested)
  38. To: TK0JUT2%NIU.BITNET@UICVM.uic.edu
  39. Subject: SMTP
  40.  
  41. --------------------------------------------------------------------------
  42.  
  43. A quick SMTP tutorial.
  44.  
  45. SMTP or simple mail transfer protocol is the method used by most internet
  46. hosts to handle the transfer of mail across the internet. It is a wonderfully
  47. simple system that handles everything in the easiest method possible. All
  48. commands and text are transfered as text, so SMTP is easy to debug. The SMTP
  49. port, which is listed in the services file in the etc directory, can be
  50. connected to using known protocols such as tcp/ip. For debugging purposes, it
  51. can be connected to using telnet. (eg. telnet host #of_smtp_port)
  52.  
  53. The commands are all text, and are listed, on request, by the SMTP server on the
  54. remote machine. The main ones are: %comments are in curly braces%
  55.  
  56. Mail From: sender@host.net.domain.area    %regular internet address%
  57. RCPT To: recipient@host.net.domain.area
  58. Data                                    %to start typing text%
  59.  
  60. %body of message here... for format see RFC #822%
  61. %from the RFC INDEX... %
  62. %822   Crocker, D.  Standard for the format of ARPA Internet text messages.
  63. %     1982 August 13; 47 p. (Format: TXT=109200 bytes)  (Obsoletes RFC 733;
  64. % or look at an old mail message%
  65.  
  66. .   %finish message with a period%
  67.  
  68. quit %to quit from connection%
  69.  
  70. Send mail is not intended as a user interface and should not be used as one.
  71. One of the many mailers available (Elm, bin mail, mm, etc.) all offer an easy
  72. interface between the user and SMTP.
  73.  
  74. Later.
  75. The Parrot
  76. 00
  77.  )
  78.  
  79. =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  80. +                               END THIS FILE                                +
  81. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+===+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  82. ! 
  83. Downloaded From P-80 International Information Systems 304-744-2253 12yrs+
  84.